• frmSubCategory.Designer.cs
  • project /
1 namespace WarehouseManagementSystem
2 {
3     
partial class frmSubCategory
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             
this.btnGetData = new System.Windows.Forms.Button();
32             
this.btnUpdate = new System.Windows.Forms.Button();
33             
this.groupBox1 = new System.Windows.Forms.GroupBox();
34             
this.cmbCategory = new System.Windows.Forms.ComboBox();
35             
this.label2 = new System.Windows.Forms.Label();
36             
this.label1 = new System.Windows.Forms.Label();
37             
this.txtSubCategory = new System.Windows.Forms.TextBox();
38             
this.btnDelete = new System.Windows.Forms.Button();
39             
this.btnSave = new System.Windows.Forms.Button();
40             
this.btnNew = new System.Windows.Forms.Button();
41             
this.panel1 = new System.Windows.Forms.Panel();
42             
this.txtSubCategoryID = new System.Windows.Forms.TextBox();
43             
this.txtCategoryID = new System.Windows.Forms.TextBox();
44             
this.groupBox1.SuspendLayout();
45             
this.panel1.SuspendLayout();
46             
this.SuspendLayout();
47             
//
48             
// btnGetData
49             
//
50             
this.btnGetData.Location = new System.Drawing.Point(309, 14);
51             
this.btnGetData.Name = "btnGetData";
52             
this.btnGetData.Size = new System.Drawing.Size(68, 32);
53             
this.btnGetData.TabIndex = 4;
54             
this.btnGetData.Text = "&Get Data";
55             
this.btnGetData.UseVisualStyleBackColor = true;
56             
this.btnGetData.Click += new System.EventHandler(this.btnGetData_Click);
57             
//
58             
// btnUpdate
59             
//
60             
this.btnUpdate.Enabled = false;
61             
this.btnUpdate.Location = new System.Drawing.Point(235, 14);
62             
this.btnUpdate.Name = "btnUpdate";
63             
this.btnUpdate.Size = new System.Drawing.Size(68, 32);
64             
this.btnUpdate.TabIndex = 3;
65             
this.btnUpdate.Text = "&Update";
66             
this.btnUpdate.UseVisualStyleBackColor = true;
67             
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
68             
//
69             
// groupBox1
70             
//
71             
this.groupBox1.Controls.Add(this.cmbCategory);
72             
this.groupBox1.Controls.Add(this.label2);
73             
this.groupBox1.Controls.Add(this.label1);
74             
this.groupBox1.Controls.Add(this.txtSubCategory);
75             
this.groupBox1.Location = new System.Drawing.Point(25, 18);
76             
this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
77             
this.groupBox1.Name = "groupBox1";
78             
this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
79             
this.groupBox1.Size = new System.Drawing.Size(396, 123);
80             
this.groupBox1.TabIndex = 2;
81             
this.groupBox1.TabStop = false;
82             
this.groupBox1.Text = "Sub Category Info";
83             
//
84             
// cmbCategory
85             
//
86             
this.cmbCategory.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
87             
this.cmbCategory.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
88             
this.cmbCategory.FormattingEnabled = true;
89             
this.cmbCategory.Location = new System.Drawing.Point(143, 74);
90             
this.cmbCategory.Name = "cmbCategory";
91             
this.cmbCategory.Size = new System.Drawing.Size(235, 25);
92             
this.cmbCategory.TabIndex = 3;
93             
this.cmbCategory.SelectedIndexChanged += new System.EventHandler(this.cmbCategory_SelectedIndexChanged);
94             
//
95             
// label2
96             
//
97             
this.label2.AutoSize = true;
98             
this.label2.Location = new System.Drawing.Point(41, 74);
99             
this.label2.Name = "label2";
100             
this.label2.Size = new System.Drawing.Size(59, 17);
101             
this.label2.TabIndex = 2;
102             
this.label2.Text = "Category";
103             
//
104             
// label1
105             
//
106             
this.label1.AutoSize = true;
107             
this.label1.Location = new System.Drawing.Point(41, 39);
108             
this.label1.Name = "label1";
109             
this.label1.Size = new System.Drawing.Size(83, 17);
110             
this.label1.TabIndex = 1;
111             
this.label1.Text = "Sub Category";
112             
//
113             
// txtSubCategory
114             
//
115             
this.txtSubCategory.Location = new System.Drawing.Point(143, 36);
116             
this.txtSubCategory.Name = "txtSubCategory";
117             
this.txtSubCategory.Size = new System.Drawing.Size(235, 24);
118             
this.txtSubCategory.TabIndex = 0;
119             
//
120             
// btnDelete
121             
//
122             
this.btnDelete.Enabled = false;
123             
this.btnDelete.Location = new System.Drawing.Point(161, 14);
124             
this.btnDelete.Name = "btnDelete";
125             
this.btnDelete.Size = new System.Drawing.Size(68, 32);
126             
this.btnDelete.TabIndex = 2;
127             
this.btnDelete.Text = "&Delete";
128             
this.btnDelete.UseVisualStyleBackColor = true;
129             
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
130             
//
131             
// btnSave
132             
//
133             
this.btnSave.Location = new System.Drawing.Point(87, 14);
134             
this.btnSave.Name = "btnSave";
135             
this.btnSave.Size = new System.Drawing.Size(68, 32);
136             
this.btnSave.TabIndex = 1;
137             
this.btnSave.Text = "&Save";
138             
this.btnSave.UseVisualStyleBackColor = true;
139             
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
140             
//
141             
// btnNew
142             
//
143             
this.btnNew.Location = new System.Drawing.Point(13, 14);
144             
this.btnNew.Name = "btnNew";
145             
this.btnNew.Size = new System.Drawing.Size(68, 32);
146             
this.btnNew.TabIndex = 0;
147             
this.btnNew.Text = "&New";
148             
this.btnNew.UseVisualStyleBackColor = true;
149             
this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
150             
//
151             
// panel1
152             
//
153             
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
154             
this.panel1.Controls.Add(this.btnGetData);
155             
this.panel1.Controls.Add(this.btnUpdate);
156             
this.panel1.Controls.Add(this.btnDelete);
157             
this.panel1.Controls.Add(this.btnSave);
158             
this.panel1.Controls.Add(this.btnNew);
159             
this.panel1.Location = new System.Drawing.Point(25, 157);
160             
this.panel1.Name = "panel1";
161             
this.panel1.Size = new System.Drawing.Size(396, 62);
162             
this.panel1.TabIndex = 3;
163             
//
164             
// txtSubCategoryID
165             
//
166             
this.txtSubCategoryID.Location = new System.Drawing.Point(272, -4);
167             
this.txtSubCategoryID.Name = "txtSubCategoryID";
168             
this.txtSubCategoryID.Size = new System.Drawing.Size(143, 24);
169             
this.txtSubCategoryID.TabIndex = 4;
170             
this.txtSubCategoryID.Visible = false;
171             
//
172             
// txtCategoryID
173             
//
174             
this.txtCategoryID.Location = new System.Drawing.Point(123, -4);
175             
this.txtCategoryID.Name = "txtCategoryID";
176             
this.txtCategoryID.Size = new System.Drawing.Size(143, 24);
177             
this.txtCategoryID.TabIndex = 5;
178             
this.txtCategoryID.Visible = false;
179             
//
180             
// frmSubCategory
181             
//
182             
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
183             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
184             
this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
185             
this.ClientSize = new System.Drawing.Size(447, 234);
186             
this.Controls.Add(this.txtCategoryID);
187             
this.Controls.Add(this.txtSubCategoryID);
188             
this.Controls.Add(this.groupBox1);
189             
this.Controls.Add(this.panel1);
190             
this.Font = new System.Drawing.Font("Palatino Linotype", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
191             
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
192             
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
193             
this.MaximizeBox = false;
194             
this.MinimizeBox = false;
195             
this.Name = "frmSubCategory";
196             
this.ShowIcon = false;
197             
this.ShowInTaskbar = false;
198             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
199             
this.Text = "Sub Category";
200             
this.Load += new System.EventHandler(this.frmSubCategory_Load);
201             
this.groupBox1.ResumeLayout(false);
202             
this.groupBox1.PerformLayout();
203             
this.panel1.ResumeLayout(false);
204             
this.ResumeLayout(false);
205             
this.PerformLayout();
206
207         }
208
209         
#endregion
210
211         
private System.Windows.Forms.GroupBox groupBox1;
212         
private System.Windows.Forms.Panel panel1;
213         
public System.Windows.Forms.Button btnGetData;
214         
public System.Windows.Forms.Button btnUpdate;
215         
public System.Windows.Forms.TextBox txtSubCategory;
216         
public System.Windows.Forms.Button btnDelete;
217         
public System.Windows.Forms.Button btnSave;
218         
public System.Windows.Forms.Button btnNew;
219         
public System.Windows.Forms.TextBox txtSubCategoryID;
220         
private System.Windows.Forms.Label label2;
221         
private System.Windows.Forms.Label label1;
222         
public System.Windows.Forms.TextBox txtCategoryID;
223         
public System.Windows.Forms.ComboBox cmbCategory;
224     }
225 }


Gõ tìm kiếm nhanh...